home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-12-21 | 1.5 KB | 74 lines |
- ############################ -*- Mode: Makefile -*- ###########################
- ## Makefile.in --
- ## ITIID : $ITI$ $Header $__Header$
- ## Author : Ulrich Pfeifer
- ## Created On : Mon Mar 21 15:19:18 1994
- ## Last Modified By: Ulrich Pfeifer
- ## Last Modified On: Thu Dec 22 15:55:06 1994
- ## Update Count : 24
- ## Status : Unknown, Use with caution!
- ###############################################################################
- prefix = /usr/local/wais
- exec_prefix = $(prefix)
- VPATH = @srcdir@
-
- srcdir = @srcdir@
- RM = rm -f
- AR = ar cq
- RM_CMD = $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut
- CC = @CC@
- CFLAGS = @CFLAGS@
- DEFS = @DEFS@
- CPPFLAGS =
- RANLIB = @RANLIB@
- SRCS = regexp.c regerror.c regsub.c try.c
- OBJS = regexp.o regerror.o regsub.o
-
- .c.o:
- $(CC) -c $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) $<
-
-
- all: libregexp.a
-
- try: try.o libregexp.a
- $(RM) $@
- $(CC) $(LDFLAGS) -o $@ try.o libregexp.a $(LIBS)
-
- clean::
- $(RM) try
-
- test: try tests
- @echo 'No news is good news...'
- try <tests
-
- veryclean:: clean
- $(RM) try libregexp.a
-
- libregexp.a: $(OBJS)
- $(RM) $@
- $(AR) $@ $(OBJS)
- $(RANLIB) $@
-
- clean::
- $(RM_CMD) "#"*
-
- Makefile:
- $(SHELL) ../config.status
-
- tags::
- $(TAGS) -w *.[ch]
- $(TAGS) -xw *.[ch] > TAGS
-
-
- install::
- @echo "install in $(CURRENT_DIR) done"
-
- install.man::
- @echo "install.man in $(CURRENT_DIR) done"
-
- Makefiles::
-
- includes::
-
-
-